Rollup multiple .scss, .sass and .css imports
Installation
npm install --save-dev rollup-plugin-scss sass
If any of them is installed, it will be used automatically, if both installed sass
will be used.
Usage
import scss from 'rollup-plugin-scss'
export default {
input: 'input.js',
output: {
file: 'output.js',
format: 'esm',
assetFileNames: '[name][extname]'
},
plugins: [
scss()
]
}
export default {
input: 'input.js',
output: { file: 'output.js', format: 'esm' },
plugins: [
scss({ fileName: 'bundle.css' })
]
}
export default {
input: 'input.js',
output: { file: 'output.js', format: 'esm' },
plugins: [
scss()
]
}
import './reset.scss'
Options
Options are passed to the sass compiler (node-sass by default). Refer to the Sass docs for more details on these options.
One notable option is indentedSyntax
which you'll need if you're parsing Sass syntax instead of Scss syntax. (e.g. when extracting a Vue <style lang="sass">
tag)
By default the plugin will base the filename for the css on the bundle destination.
scss({
name: 'output.css',
fileName: 'output.css',
output: function (styles, styleNodes) {
writeFileSync('bundle.css', styles)
},
output: false,
sourceMap: true,
include: [],
exclude: [],
failOnError: true,
prefix: `@import "./fonts.scss";`,
sass: require('node-sass'),
processor: () => postcss([autoprefixer({ overrideBrowserslist: 'Edge 18' })]),
processor: (css, map) => ({
css: css.replace('/*date*/', '/* ' + new Date().toJSON() + ' */'),
map
}),
processor: css =>
css.replace('/*date*/', '/* ' + new Date().toJSON() + ' */'),
verbose: true
watch: 'src/styles/components',
watch: ['src/styles/components', 'src/multiple/folders']
includePaths: ...
})
Examples
Using postcss + autoprefixer + includePaths (sass option)
import scss from 'rollup-plugin-scss'
import postcss from 'postcss'
import autoprefixer from 'autoprefixer'
export default {
input: 'input.js',
output: {
file: 'output.js',
format: 'esm'
},
plugins: [
scss({
processor: () => postcss([autoprefixer()]),
includePaths: [
path.join(__dirname, '../../node_modules/'),
'node_modules/'
]
})
]
}
Minify CSS output:
scss({
outputStyle: 'compressed'
})
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Contributions and feedback are very welcome. New features should include a test.
To get it running:
- Clone the project.
npm install
Credits
License
The MIT License (MIT). Please see License File for more information.